Release 10.1A: OpenEdge Data Management:
SQL Reference


UPPER

Returns the result of the argument character expression after converting all the characters to uppercase.

Syntax

UPPER ( char_expression ) 

Example

The example illustrates the UPPER function, returning columns from rows in the customer table where the last_name column, after being converted to uppercase, is equal to ‘SMITH’:

SELECT * 
    FROM customer 
    WHERE UPPER (last_name) = 'SMITH' ; 

Notes

Compatibility

SQL compatible


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095